home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / pmode / pmode30b / ex_c.c < prev    next >
C/C++ Source or Header  |  1994-05-30  |  851b  |  40 lines

  1. // Quickie example C file for PMODE v3.0 extender for Borland C++ 4.0.
  2. // It is just a simple little file that demonstrates some things.
  3. // Notice that no C libraries are used.
  4.  
  5. #include "pmode.h"
  6.  
  7. DWORD screen_base;
  8.  
  9. void putstring (int x, int y, char *str);
  10.  
  11. void PMmain (void)
  12. {
  13.   int a;
  14.  
  15. // set base of text screen
  16.   screen_base = 0xb8000 - lowbase;
  17.  
  18. // clear text screen
  19.   for (a = 0; a < 25*80; ((WORD *)screen_base)[a++] = 0x720);
  20.  
  21. // put some strings to screen
  22.   putstring (0, 0, "Hello World from Protected Mode...");
  23.   putstring (10, 10, "Press any key to exit...");
  24.  
  25. // wait for keypress, then exit
  26.   asm
  27.   {
  28.     xor ah,ah
  29.     int 16h
  30.   }
  31. }
  32.  
  33. void putstring (int x, int y, char *str)
  34. {
  35.   char *screen_out = (void *)(screen_base + 80*2*y + 2*x - 2);
  36.  
  37.   while (screen_out+=2, *screen_out = *(str++));
  38. }
  39.  
  40.